Código fuente de 'Variables del servidor 2.asp'

<html>
<head>
<title>Variables del servidor 2 - Códigos asp, programacion asp, descargas asp, rutinas asp</title>
</head>
<p align="center"><b><font size="3">Variables del servidor 2</font></b></p>
<br>
<body style="font-family: Arial; font-size: 11pt">


<%
Dim variable

for each variable in Request.ServerVariables
	Response.Write(variable & " = ")
	Response.Write(Request.ServerVariables(variable))
	%>
    <br><br>
    <%
next
%>


</body>
</html>